home *** CD-ROM | disk | FTP | other *** search
- function submit_onKeyUp(event)
-
- {
-
- document.forms.order.submitButton.focus();
-
- document.forms.order.submitButton.click();
-
- }
-
-
-
- function reset_onKeyUp(event)
-
- {
-
- document.forms.order.resetButton.focus();
-
- document.forms.order.resetButton.click();
-
- }
-
-
-
- function window_onKeyUp(event)
-
- {
-
- // The ENTER key is 13, which submits the form and
-
- // the ESC key is 27, which resets the form. Otherwise,
-
- // the event is routed to other event handlers.
-
- if (event.which == 13)
-
- document.forms.order.submitButton.handleEvent(event);
-
- else if (event.which == 27)
-
- document.forms.order.resetButton.handleEvent(event);
-
- else
-
- return routeEvent(event);
-
- }
-
-
-
- function initialize()
-
- {
-
- document.forms.order.submitButton.onkeyup = submit_onKeyUp;
-
- document.forms.order.resetButton.onkeyup = reset_onKeyUp;
-
-
-
- window.captureEvents(Event.KEYUP);
-
- window.onkeyup = window_onKeyUp;
-
- }
-
-